body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #61b44f;
}

nav {
  background-color: #333;
  padding: 10px;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
}

nav ul li a:hover {
  background-color: #575757;
}

header {
  background-color: #61b44f;
  color: white;
  text-align: center;
  padding: 2em 0;
}

main {
  display: flex;
  justify-content: center;
  padding: 2em;
}

.content {
  background-color: white;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  width: 100%;
}

footer {
  background-color: #61b44f;
  color: white;
  text-align: center;
  padding: 1em 0;
}

h1, h2, h4 {
  color: #3f3e3e;
}

h4 {
  margin-bottom: 5px;
}

p {
  color: #3f3e3e;
  margin-top: 5px;
}

.illustration {
  float: right;
  margin: 0 0 1em 1em;
  max-width: 100px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.learn-more {
  color: black; /* Make the link text black */
  text-decoration: none; /* Remove the underline */
}

.learn-more:hover {
  text-decoration: underline; /* Add underline on hover */
}



/* Table styling */
 .styled-table {
    margin: 0 auto; 
    border-collapse: collapse;
    width: 80%;
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .styled-table th, .styled-table td {
    padding: 12px 15px;
    text-align: left;
  }
  
  .styled-table th {
    background-color: #333;
    color: white;
    border-bottom: 2px solid #333; 
  }
  
  .styled-table tr {
    border-bottom: none;
  }
  
  .styled-table tr:last-of-type {
    border-bottom: 2px solid #333;
  }
  
  .styled-table tr td:first-child {
    border-right: 1px solid #333; 
  }
  
  .styled-table tr td:last-child {
    border-left: none; 
  }
  
  .styled-table tr td {
    border: none; 
  }
  
  .styled-table tr:first-child th {
    border-top: none; 
  }
  
  .styled-table tr:last-child td {
    border-bottom: 1px solid #333; 
  }
  
